body {
  background-color: #150578;
  color: #ffffff;
  margin: 0;
  padding: 0;
}
.navbar {
  background-color: #150578 !important;
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
}
.navbar-brand {
  color: #ffffff !important;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand .nav-logo {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: #ffffff !important;
}
.nav-icon {
  width: 25px;
  height: 25px;
  border-radius: 5px;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.navbar-nav .nav-link:hover .nav-icon {
  transform: scale(1.2);
  filter: brightness(1.3);
}
.navbar-nav .active {
  color: #ffffff !important;
}
.hero {
  margin-top: 75px;
  height: 45vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 50, 0.6);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}
.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.hero-content p {
  font-size: 1.2rem;
  color: #ffffff;
}
.container {
  background-color: rgba(120, 192, 224, 0.6);
  margin: 20px auto;
  padding: 30px;
  border-radius: 15px;
  width: 85%;
  max-width: 1200px;
  text-align: left;
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
}
.text-section {
  font-size: 1.1rem;
  line-height: 1.8;
}
.text-section h2 {
  margin-top: 20px;
  border-bottom: 2px solid rgba(120, 192, 224, 0.6);  
  padding-bottom: 5px;
  text-align: left;
}
.text-section u {
  font-weight: bold;
  display: block;
  margin-top: 15px;
}
footer {
  background-color: rgba(0, 26, 102, 0.9);
  text-align: center;
  padding: 15px 0;
  width: 100%;
  color: #ffffff;
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
}
footer a {
  color: #99ccff;
  text-decoration: none;
  margin: 0 8px;
}
footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .container {
    width: 90%;
  }
}
@media (max-width: 576px) {
  .hero {
    height: 40vh;
  }
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .text-section {
    font-size: 1rem;
  }
}
.dm-serif-text-regular {
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: normal;
}
.dm-serif-text-regular-italic {
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: italic;
}